@import url(https://fonts.googleapis.com/css?family=Roboto:300,400);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css);

*{
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;

body {
  font-family: 'Itim', cursive;
}


/*Contact Seation*/
.contact-section {
    padding-top: 23px;
    padding-bottom: 30px;
}
.contact-form {
    border: 1px solid #ddd;
    padding: 20px;

}
.contact h2 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 40px;
}

.contact-info {
  display: flex;
  padding-left:60px;
}

ul {
  margin-right: 50px;
  display: flex;
  flex-direction: column;
}

ul li {
  list-style: none;
  margin: 10px 0;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.circle {
  width: 50px;
  height: 50px;
  background: #2c8ec7;
  border-radius: 50%;
  margin-right: 15px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  font-size: 12px;
}
/*End Contact section*/

/* Footer section styling */
.footer {
    padding: 10px 0;
    background-color: #f3cb2b;
      color: white;
  }
  
  .footer .copyright {
      margin-top: 15px;
      text-align: center;
      font-size: 20px;
      color: #ffffff;
      margin-bottom: 0;
  }
